home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / presto / presto10.lha / src / debug.C < prev    next >
C/C++ Source or Header  |  1991-12-11  |  446b  |  29 lines

  1. #include "presto.h"
  2.  
  3. int debug_level = 10;
  4.  
  5. Spinlock debug_lock;
  6. //int debug_lock = 0;
  7. dstream dout(10);
  8.  
  9. dstream::dstream (int print_level, int flush)
  10. {
  11.     d_print_level = print_level;
  12.     d_flush = flush;
  13. }
  14.  
  15. void
  16. dstream::operator<< (char* s)
  17. {
  18. //#ifdef debug
  19.     if (debug_level >= d_print_level) {
  20.         debug_lock.lock();
  21. //        s_lock(&debug_lock);
  22.         cout << s;
  23.         if (d_flush) cout.flush();
  24.         debug_lock.unlock();
  25. //        s_unlock(&debug_lock);
  26.     }
  27. //#endif
  28. }
  29.